home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 050a / snr53b.zip / COMPRESS.S < prev    next >
Text File  |  1993-05-30  |  441b  |  11 lines

  1. \  COMPRESS.S
  2. \  Space compression: 2 or adjacent spaces are compressed into one. This
  3. \  also compresses multiple ASCII tabs (hex 09) into one space.
  4.  
  5. \s=*ic\09\20      \ ignore consecutive white space from start of job
  6.  
  7. \09=\20*ic\09\20  \ ignore consecutive white space after the first tab
  8.  =\20*ic\09\20    \ ignore consecutive white space after the first space
  9. \0a=\0a*ic\09\20  \ ignore consecutive white space after a CRLF
  10.  
  11.